← Index
NYTProf Performance Profile   
For /Users/timbo/perl5/perlbrew/perls/perl-5.18.2/bin/perlcritic
  Run on Sat Mar 19 22:12:22 2016
Reported on Sat Mar 19 22:14:11 2016

Filename(eval 44)[/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/Exception/Class.pm:177]
StatementsExecuted 4 statements in 69µs
Eval Invoked At/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/Exception/Class.pm line 177
Sibling evals1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11110µs70µsPerl::Critic::Exception::Configuration::::BEGIN@3Perl::Critic::Exception::Configuration::BEGIN@3
0000s0sPerl::Critic::Exception::Configuration::::FieldsPerl::Critic::Exception::Configuration::Fields
0000s0sPerl::Critic::Exception::Configuration::::descriptionPerl::Critic::Exception::Configuration::description
0000s0sPerl::Critic::Exception::Configuration::::sourcePerl::Critic::Exception::Configuration::source
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Perl::Critic::Exception::Configuration;
2
3264µs270µs
# spent 70µs (10+60) within Perl::Critic::Exception::Configuration::BEGIN@3 which was called: # once (10µs+60µs) by Exception::Class::_make_subclass at line 3
use base qw(Perl::Critic::Exception);
# spent 70µs making 1 call to Perl::Critic::Exception::Configuration::BEGIN@3 # spent 60µs making 1 call to base::import, recursion: max depth 1, sum of overlapping time 60µs
4
51400nsour $VERSION = '1.1';
6
714µs1;
8
9sub description
10{
11 return 'A problem with Perl::Critic configuration, whether from a file or a command line or some other source.';
12}
13sub Fields { return ($_[0]->SUPER::Fields, 'source') }
14
15sub source { $_[0]->{source} }
16
17;